home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 1116.ZIP / TOOLKIT.ARC / HELLO3.C < prev    next >
Text File  |  1979-12-31  |  422b  |  22 lines

  1.  
  2. /* HELLO3.C
  3.              Note:   A>link
  4.  
  5.                        Microsoft Linker
  6.  
  7.                        object modules [.OBJ]: hello3.obj+stdio.obj
  8.                        run file [HELLO3.EXE]: hello3.exe
  9.                        map file    [NUL.MAP]: <cr>
  10.                        libraries      [.LIB]: cpclib.lib
  11.  
  12.                      A>
  13. */
  14.  
  15. main()
  16.        {
  17.          printf("Hello",0);
  18.        }
  19.  
  20.  
  21.  
  22.